/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}
:root {
  --main-color: #2195f3;
  --main-color-alt: #1787e0;
  --main-background: #ececed;
  --main-transition: 0.4s;
  --section-padding: 100px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Cairo", sans-serif;
}
ul {
  list-style: none;
  padding: 0;
}
a {
  text-decoration: none;
}
.container {
  padding: 0 10px 0;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* End Global Rules */
/* S-components */
.main-title {
  position: relative;
  width: fit-content;
  font-size: 30px;
  font-weight: bold;
  padding: 10px 20px;
  border: 1px solid;
  margin: 0 auto 60px;
  transition: 0.3s;
  z-index: 2;
}
.main-title::before,
.main-title::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--main-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.main-title::before {
  left: -30px;
}
.main-title::after {
  right: -30px;
}
.main-title:hover::before {
  animation: left-fill 0.5s linear forwards;
}
.main-title:hover::after {
  animation: right-fill 0.5s linear forwards;
}
.main-title:hover {
  color: white;
  border-color: white;
  transition-delay: 0.5s;
}

/* E-components */
/* S-header */
header {
  box-shadow: 0 0 10px #a8a8a8;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 767px) {
  header .container {
    flex-direction: column;
  }
}
header .container > a {
  color: var(--main-color);
  font-size: 30px;
  font-weight: bold;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  header .container > a {
    height: 50px;
  }
}
header nav > ul {
  display: flex;
}
header nav > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  font-size: 18px;
  padding: 0 20px;
  color: black;
  position: relative;
  transition: var(--main-transition);
  overflow: hidden;
}
@media (max-width: 767px) {
  header nav > ul > li > a {
    height: 50px;
    font-size: 15px;
    padding: 0 10px;
  }
}
header nav > ul > li > a:hover {
  color: var(--main-color);
  background-color: #f0f0f0;
}
header nav > ul > li > a::before {
  content: "";
  height: 3px;
  width: 0;
  background-color: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--main-transition);
}
header nav > ul > li > a:hover::before {
  width: 100%;
}

header .mega-menu {
  opacity: 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(100% + 50px);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: white;
  border-bottom: 3px solid var(--main-color-alt);
  transition: var(--main-transition);
  z-index: -1;
}

header .other-links:hover .mega-menu {
  opacity: 1;
  z-index: 10;
  top: calc(100% + 10px);
}
@media (max-width: 767px) {
  header .mega-menu {
    flex-direction: column;
    gap: 0;
    padding: 5px;
  }
}
header .mega-menu .image img {
  width: 100%;
}
@media (max-width: 991px) {
  header .mega-menu .image {
    display: none;
  }
}
header .mega-menu ul {
  flex: 1;
  min-width: 250px;
  width: 100%;
}

header .mega-menu ul li a {
  display: block;
  color: var(--main-color-alt);
  font-size: 18px;
  font-weight: bold;
  padding: 15px;
  border-bottom: 1px solid #e9e6e6;
  position: relative;
}
@media (max-width: 767px) {
  header .mega-menu ul:first-of-type li:last-child a {
    border-bottom: 1px solid #e9e6e6;
  }
}
header .mega-menu ul li a::before {
  content: "";
  height: 100%;
  width: 0;
  background-color: rgb(240, 240, 240);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.3s;
}
header .mega-menu ul li:last-child a {
  border-bottom: none;
}
header .mega-menu ul li a:hover::before {
  width: 100%;
}

/* E-header */
/* S-landing */
.landing {
  display: flex;
  height: calc(100vh - 70px);
  position: relative;
  overflow: hidden;
}
.landing::before {
  content: "";
  background-color: var(--main-background);
  width: 264%;
  height: 93%;
  position: absolute;
  transform: skewY(-5deg);
  transform-origin: bottom left;
}
.landing .container {
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 120px;
}

.landing .intro h1 {
  font-size: 40px;
  margin: 0 0 15px 0;
}
.landing .intro p {
  font-size: 25px;
  line-height: 1.6;
  color: #686767;
}
@media (max-width: 767px) {
  .landing .intro h1 {
    font-size: 30px;
  }
  .landing .intro p {
    font-size: 18px;
  }
}
.landing img {
  max-width: 100%;
  animation: up-down 4s infinite linear alternate;
}
@media (max-width: 991px) {
  .landing .image {
    display: none;
  }
  .landing .intro {
    text-align: center;
  }
}

.landing a {
  position: absolute;
  left: 50%;
  margin-left: -11.25px;
  bottom: 30px;
  height: 40px;
  animation-name: bouncing;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
.landing a i {
  color: var(--main-color);
  font-size: 25px;
  font-weight: bold;
}
/* E-landing */

/* S-articles */
.articles {
  padding: var(--section-padding) 0;
}
.articles .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 40px;
}
.articles .box {
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(190, 190, 190);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform var(--main-transition), box-shadow var(--main-transition);
}
.articles .box:hover {
  transform: translateY(-15px);
  box-shadow: 0 0 10px rgb(165, 165, 165);
}
.articles .box .image img {
  max-width: 100%;
}
.articles .box .descr {
  padding: 10px;
  border-bottom: 1px solid rgb(207, 207, 207);
}
.articles .box .descr h3 {
  margin-bottom: 10px;
}
.articles .box .descr p {
  color: #777;
  line-height: 1.6;
}
.articles .box .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  color: var(--main-color-alt);
  font-weight: bold;
}
.articles .box:hover .info i {
  animation: going-right 1s infinite;
}

/* E-articles */
/* S-gallery */
.gallery {
  padding: var(--section-padding) 0;
  background-color: var(--main-background);
}
.gallery .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 60px;
}
.gallery .box {
  padding: 15px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery .image {
  overflow: hidden;
  position: relative;
}
.gallery .image::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: var(--main-transition);
}
.gallery .image:hover::after {
  animation: flashing 0.3s linear;
}
.gallery img {
  max-width: calc(100%);
  transition: var(--main-transition);
}
.gallery .image:hover img {
  transform: rotate(3deg) scale(1.1);
}
/* E-gallery */
/* S-features */
.features {
  padding: var(--section-padding) 0;
}
.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 50px;
}
.features .box {
  position: relative;
  border: 2px solid #777;
}
.features .box .image {
  position: relative;
  overflow: hidden;
}
.features .box .image::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.features .box .image::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-width: 0 0 170px 700px;
  border-style: solid;
  border-color: transparent transparent white transparent;
  transition: var(--main-transition);
}
.features .box:hover .image::after {
  border-width: 0 700px 170px 0;
}
.features .box .image img {
  width: 100%;
  max-width: 100%;
}
.features .box .info {
  position: relative;
  z-index: 1;
  padding: 0 20px 20px;
  text-align: center;
}
.features .box h1 {
  width: fit-content;
  margin: 0 auto 0.67em;
  font-size: 50px;
  position: relative;
}
.features .box h1::after {
  content: "";
  width: calc(100% - 40px);
  height: 5px;
  background-color: black;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.features .box p {
  font-size: 20px;
  color: #777;
  margin-bottom: 30px;
  line-height: 1.6;
}
.features .box button {
  width: 130px;
  background-color: transparent;
  padding: 10px;
  font-size: 30px;
  border-radius: 10px;
  border: 3px solid;
  overflow: hidden;
  position: relative;
  transition: var(--main-transition);
}
.features .box button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 200%;
  width: 0;
  background-color: black;
  transition: var(--main-transition);
  z-index: -1;
}
.features .box:hover button {
  color: white;
}
.features .box:hover button::before {
  width: 110%;
}
.features .quality .image::before {
  background-color: rgba(255, 0, 0, 0.432);
}
.features .quality button {
  color: #f44036;
  border-color: #f44036;
}
.features .quality h1::after,
.features .quality button::before {
  background-color: #f44036;
}
.features .time .image::before {
  background-color: rgb(0 150 136 / 60%);
}
.features .time button {
  color: #009688;
  border-color: #009688;
}
.features .time h1::after,
.features .time button::before {
  background-color: #009688;
}
.features .passion .image::before {
  background-color: rgb(3 169 244 / 60%);
}
.features .passion button {
  color: #03a9f4;
  border-color: #03a9f4;
}
.features .passion h1::after,
.features .passion button::before {
  background-color: #03a9f4;
}
/* E-features */
/* S-testimonials */
.testimonials {
  padding: var(--section-padding) 0;
  background-color: var(--main-background);
}
.testimonials .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 50px;
}
.testimonials .box {
  background-color: white;
  padding: 20px;
  position: relative;
}
.testimonials img {
  width: 100px;
  border-radius: 50%;
  border: 15px solid var(--main-background);
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
}

.testimonials h3 {
  font-size: 20px;
}
.testimonials p {
  padding: 15px 0;
  color: #777;
}
/* E-testimonials */
/* S-team */
.team {
  padding: var(--section-padding) 0;
}
.team .container {
  padding-top: var(--section-padding);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 50px;
}
.team .box {
  position: relative;
}
.team .box::before,
.team .box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-radius: 15px;
}

.team .box::before {
  width: calc(100% - 60px);
  z-index: -2;
  background-color: #f3f3f3;
}
.team .box::after {
  transition: var(--main-transition);
  width: 0;
  background-color: #e4e4e4;
  z-index: -1;
}
.team .box:hover::after {
  width: calc(100% - 60px);
}
.team .data {
  display: flex;
  align-items: center;
  padding-top: 40px;
}
.team img {
  width: calc(100% - 60px);
  border-radius: 15px;
  transition: var(--main-transition);
}
.team .box:hover img {
  filter: grayscale(100%);
}
.team .social {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}
.team .social a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: #777;
  padding: 5px 0;
  transition: var(--main-transition);
}
.team a:hover {
  color: var(--main-color);
}
.team .info {
  margin: 20px 75px;
}
.team .info h3 {
  margin-bottom: 10px;
  font-size: 25px;
  color: var(--main-color);
  transition: var(--main-transition);
}
.team .box:hover .info h3 {
  color: #777;
}
/* E-team */
/* S-services */
.services {
  padding: var(--section-padding) 0;
  background-color: var(--main-background);
}
.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.services .box {
  position: relative;
  box-shadow: 7px 7px 10px #777;
  transition: var(--main-transition);
}
.services .box:hover {
  transform: translateY(-10px);
}
.services .box::before {
  content: "";
  width: 0;
  height: 3px;
  background-color: var(--main-color-alt);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--main-transition);
}
.services .box:hover::before {
  width: 100%;
}
.services .srv {
  text-align: center;
  padding: 50px;
  background-color: white;
}
.services .srv i {
  margin-bottom: 20px;
  color: rgb(213, 213, 213);
}
.services .srv h3 {
  color: var(--main-color-alt);
  font-size: 25px;
  font-weight: bold;
}
.services .details {
  background-color: rgb(249, 249, 249);
  display: flex;
  justify-content: space-between;
}
.services .details .num {
  position: relative;
  background-color: var(--main-color);
  color: white;
  width: 100px;
  font-size: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services .details .num::after {
  content: "";
  position: absolute;
  top: 0;
  right: -35px;
  background-color: rgb(213, 213, 213);
  width: 50px;
  height: 100%;
  transform: skewX(-30deg);
}
.services .details a {
  display: block;
  padding: 15px;
  color: var(--main-color);
}
/* E-services */
/* S-skills */
.skills {
  padding: var(--section-padding) 0;
}

.skills .container {
  display: flex;
}
.skills .languages h3 {
  margin: 25px 0 15px;
}
@media (max-width: 991px) {
  .skills img {
    display: none;
  }
}
.skills .languages {
  flex: 1;
}
.skills .languages .rate {
  position: relative;
  width: 100%;
  height: 30px;
  background-color: #e4e4e4;
}
.skills .languages .rate::before {
  content: attr(rate);
  position: absolute;
  right: 0;
  top: -35px;
  padding: 2px 3px;
  border: 1px solid #cfcfcf;
  border-radius: 3px;
  color: var(--main-color);
  font-size: 12px;
  font-weight: bold;
}
.skills .languages .rate span {
  height: 100%;
  background-color: var(--main-color-alt);
  position: absolute;
}
/* E-skills */
/* S-work */
.work {
  padding: var(--section-padding) 0;
  background-color: var(--main-background);
}
.work .container {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 991px) {
  .work .container {
    flex-direction: column;
  }
}
.work .container > img {
  max-width: 100%;
}
.work .box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background-color: #f6f5f5;
  border: 2px solid white;
  border-radius: 7px;
  margin-bottom: 20px;
  position: relative;
  flex-direction: column;
  text-align: center;
}
.work .box::before {
  content: "";
  width: 0;
  height: 0;
  background-color: #ededed;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: var(--main-transition);
}
.work .box:hover::before {
  width: 100%;
  height: 100%;
}
.work .box .step,
.work .box img {
  position: relative;
}
.work .info img {
  width: 65px;
}
.work h3 {
  font-size: 22px;
}
.work p {
  margin-top: 10px;
  line-height: 1.6;
  font-size: 18px;
  color: #777;
}
/* E-work */
/* S-latestevents */
.events {
  padding: var(--section-padding) 0;
}
.events .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.events img {
  max-width: 35%;
}
@media (max-width: 991px) {
  .events img {
    display: none;
  }
}
.events .info {
  flex: 1;
  text-align: center;
}
.events .timing {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .events .container .timing {
    gap: 10px;
  }
}
.events .timing div {
  text-align: center;
  border: 2px solid #d4d4d4;
  border-radius: 6px;
  transition: var(--main-transition);
}
.events .timing div:hover {
  border-color: var(--main-color-alt);
}
.events .info span {
  display: block;
}
.events span:first-child {
  color: var(--main-color-alt);
  font-size: 35px;
  font-weight: bold;
  padding: 15px;
  border-bottom: 2px solid #d4d4d4;
  transition: var(--main-transition);
}
.events .timing div:hover span:first-child {
  border-bottom-color: var(--main-color-alt);
}
.events span:nth-child(2) {
  font-size: 13px;
  padding: 3px;
}
.events h3 {
  font-size: 25px;
}
@media (max-width: 991px) {
  .events h3 {
    font-size: 20px;
  }
}
.events p {
  color: #777;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .events p {
    font-size: 15px;
  }
}
.events .describe {
  width: 100%;
  margin-top: 90px;
}
.events form {
  width: 50%;
  margin: auto;
  background-color: #f6f5f5;
  padding: 30px 36px;
  display: flex;
  gap: 20px;
  border-radius: 40px;
}
.events input {
  outline: none;
  border: none;
  padding: 15px;
  border-radius: 40px;
}
.events input:first-child {
  caret-color: var(--main-color);
  flex: 1;
}

.events input:nth-child(2) {
  background-color: var(--main-color);
  color: white;
  font-size: 14px;
}
@media (max-width: 767px) {
  .events form {
    flex-direction: column;
    padding: 15px 15px;
    width: 100%;
  }
  .events input:first-child {
    max-width: 100%;
  }
}
/* E-latestevents */
/* S-pricing */
.pricing {
  padding: var(--section-padding) 0;
  background-color: var(--main-background);
}
.pricing .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.pricing .box {
  background-color: white;
  box-shadow: 0 4px 10px #a0a0a0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.pricing .box::before,
.pricing .box::after {
  content: "";
  width: 0;
  height: 50%;
  background-color: #f6f6f6;
  position: absolute;
  z-index: -1;
  transition: var(--main-transition);
}
.pricing .box::before {
  top: 0;
  right: 0;
}
.pricing .box::after {
  top: 50%;
  left: 0;
}
.pricing .box:hover::after,
.pricing .box:hover::before {
  width: 100%;
}
.pricing .box:nth-child(2) {
  position: relative;
  top: -20px;
}
@media (max-width: 1200px) {
  .pricing .box:nth-child(2) {
    top: 0;
  }
}
.pricing .box:nth-child(2) > span {
  background-color: var(--main-color);
  color: white;
  font-weight: bold;
  font-size: 18px;
  clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%);
  position: absolute;
  top: 50px;
  right: -40px;
  width: 140px;
  height: 40px;
  transform: rotate(90deg);
  text-align: left;
  line-height: 40px;
  padding-left: 10px;
}

.pricing h3 {
  font-size: 25px;
  margin: 30px 0;
}
.pricing img {
  width: 100px;
}
.pricing .price span {
  display: block;
}
.pricing .price span:first-child {
  font-size: 65px;
  font-weight: bold;
  color: var(--main-color);
  margin: 30px 0 0;
}
.pricing .price span:nth-child(2) {
  color: #777;
  margin: 10px 0 20px;
}
.pricing ul {
  text-align: left;
}
.pricing ul li {
  position: relative;
  padding: 15px 20px;
  border-top: 2px solid #eee;
}
.pricing ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  margin-right: 10px;
  font-weight: 900;
  color: var(--main-color);
}
.pricing a {
  display: block;
  width: fit-content;
  margin: 30px auto;
  border: 2px solid var(--main-color);
  color: var(--main-color);
  padding: 15px 20px;
  border-radius: 7px;
  font-weight: bold;
  transition: var(--main-transition);
}
.pricing a:hover {
  background-color: var(--main-color);
  color: white;
}
/* E-pricing */
/* S-videos */
.videos {
  padding: var(--section-padding) 0;
}
.videos .holder {
  display: flex;
  border: 2px solid var(--main-background);
  background-color: var(--main-background);
}
@media (max-width: 991px) {
  .videos .holder {
    flex-direction: column;
  }
}
.videos .list {
  min-width: 35%;
}
.videos .list .head {
  background-color: #f4f4f4;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.videos li {
  padding: 20px;
  border-top: 2px solid var(--main-background);
  background-color: white;
  transition: var(--main-transition);
  cursor: pointer;
}
.videos li:hover {
  background-color: #f4f4f4;
}
.videos li p {
  margin-bottom: 20px;
  transition: var(--main-transition);
}
.videos li:hover p {
  color: var(--main-color);
}
.videos span {
  color: #777;
}
.videos .preview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}

.videos img {
  max-width: 100%;
}
.videos .preview p {
  background-color: white;
  padding: 20px;
  margin-top: 10px;
}
/* E-videos */
/* S-stats */
.stats {
  padding: var(--section-padding) 0;
  background-image: url("../images/stats.jpg");
  position: relative;
}
.stats::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 95%);
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .stats .main-title {
    padding: 10px;
    font-size: 27px;
  }
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.stats .box {
  position: relative;

  text-align: center;
  background-color: white;
  padding: 20px;
}
.stats .box::before,
.stats .box::after {
  content: "";
  width: 2px;
  height: 0;
  background-color: var(--main-color);
  position: absolute;
  transition: var(--main-transition);
}
.stats .box::before {
  left: 0;
  bottom: 0;
}
.stats .box::after {
  right: 0;
  top: 0;
}
.stats .box:hover::before,
.stats .box:hover::after {
  height: 100%;
}
.stats .box span:first-of-type {
  display: block;
  font-size: 50px;
  font-weight: bold;
  margin: 15px 0;
}
.stats .box span:last-of-type {
  color: var(--main-color);
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
}
/* E-stats */
/* S-discount */
.discount {
  display: flex;
}
@media (max-width: 991px) {
  .discount {
    flex-direction: column;
  }
}
.discount > div {
  min-width: 50%;
}
.discount .info {
  position: relative;
  text-align: center;
  animation: chimg 10s linear infinite alternate;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.discount .info::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(23 135 224 / 97%);
  z-index: -1;
}
.discount .info h2 {
  font-size: 40px;
  color: white;
}
.discount .info p {
  font-size: 17px;
  color: white;
  max-width: 500px;
  margin: 30px 0 100px;
  line-height: 1.6;
}
.discount img {
  width: 300px;
  max-width: 100%;
}
.discount .request {
  padding: 70px 0;
  text-align: center;
}
.discount .request h2 {
  text-align: center;
}
.discount form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 60%;
  margin: 35px auto;
}
.discount .input {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  background-color: var(--main-background);
  padding: 15px;
  caret-color: var(--main-color);
  outline: none;
}
.discount textarea.input {
  resize: none;
  height: 200px;
}
.discount [type="submit"] {
  outline: none;
  border: none;
  background-color: var(--main-color);
  color: white;
  padding: 20px;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--main-transition);
}
.discount [type="submit"]:hover {
  background-color: var(--main-color-alt);
}
/* E-discount */
/* S-foot */
footer {
  background-color: #191919;
  padding: var(--section-padding) 0 0;
  color: white;
  --main-footer-color: #b9b9b9;
}
@media (max-width: 767px) {
  footer {
    text-align: center;
  }
}
footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  align-items: start;
}
footer .container h1 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 50px;
}
footer .col1 ul {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  footer .col1 ul {
    justify-content: center;
  }
}
footer .col1 i {
  background-color: #313131;
  color: var(--main-footer-color);
  padding: 20px;
  transition: var(--main-transition);
  font-size: 20px;
  width: 60px;
}
footer .col1 li:not(:last-child) i:hover {
  background-color: var(--main-color);
}
footer .col1 li:last-child i:hover {
  background-color: red;
}
footer .col1 p {
  color: var(--main-footer-color);
  line-height: 1.6;
  margin-top: 20px;
}
footer .col2 li:not(:last-child) {
  border-bottom: 1px solid #444;
}
footer .col2 li a {
  display: block;
  padding: 15px 0;
  color: var(--main-footer-color);
  position: relative;
  font-size: 15px;
  transition: var(--main-transition);
}
footer .col2 a:hover {
  transform: translateX(10px);
  color: white;
}
footer .col2 a::before {
  font-family: "Font Awesome 6 Free";
  content: "\F101";
  font-weight: 900;
  color: var(--main-color);
  margin-right: 10px;
}
footer .col3 li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  footer .col3 li {
    flex-direction: column;
  }
}
footer .col3 li i {
  color: var(--main-color);
  font-size: 25px;
}
footer .col3 p {
  color: var(--main-footer-color);
  font-size: 15px;
  line-height: 1.6;
}
footer .col3 span {
  display: block;
}
footer img {
  width: 80px;
  border: 4px solid white;
  margin: 2px;
}
footer .maker {
  border-top: 1px solid #444;
  padding: 20px;
  text-align: center;
}

/* E-foot */
/* S-Animations */
@keyframes up-down {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes bouncing {
  0%,
  10%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  60% {
    transform: translateY(-10px);
  }
}

@keyframes left-fill {
  50% {
    left: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    left: 0;
    border-radius: 0;
    width: 51%;
    height: 100%;
  }
}
@keyframes right-fill {
  50% {
    right: 0;
    width: 12px;
    height: 12px;
  }
  100% {
    right: 0;
    border-radius: 0;
    width: 51%;
    height: 100%;
  }
}
@keyframes going-right {
  to {
    transform: translateX(5px);
  }
}
@keyframes flashing {
  0%,
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 200%;
    height: 200%;
  }
}
@keyframes chimg {
  0%,
  100% {
    background-image: url("../images/discount-background1.jpg");
  }
  50% {
    background-image: url("../images/discount-background2.jpg");
  }
}
/* E-Animations */
